home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960209-19960425 / 000258_news@columbia.edu _Fri Mar 22 10:33:18 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id KAA11111 for <kermit.misc@watsun>; Fri, 22 Mar 1996 10:33:17 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id KAA01108 for kermit.misc@watsun; Fri, 22 Mar 1996 10:33:14 -0500 (EST)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Q: Client/Server w/ MS-Kermit ?
  8. Date: 22 Mar 1996 15:32:57 GMT
  9. Organization: Columbia University
  10. Lines: 34
  11. Message-ID: <4iuh79$125@apakabar.cc.columbia.edu>
  12. References: <3151D6FD.34B@cs.tu-berlin.de>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <3151D6FD.34B@cs.tu-berlin.de>,
  16. Michael Agbaglo  <byteshif@cs.tu-berlin.de> wrote:
  17. : I'd like to have one machine as a server, answering the call and then going
  18. : into server mode.  The other should call get one file, receive one file and
  19. : disconnect.
  20. : on the client side I wrote s.th. like
  21. : dial 1111111
  22. : send foo
  23. : get bar
  24. : but instead of dialing kermit goes immediately into transfer mode.
  25. : What's that ? (MS-Kermit 3.1x, where x=1,2 or 3 - I don't remember...)
  26. :
  27. DIAL is a macro, not a built-in command, in versions 3.13 and previous.
  28. If the DIAL macro is not defined, e.g. because the standard MSKERMIT.INI
  29. file was not executed or the appropriate dialing script could not be
  30. found, then obviously DIAL would not do anything.  Solution: upgrade to
  31. 3.14, the current version, which will still do something akin to dialing
  32. under these conditions.
  33.  
  34. Also, make sure you've installed Kermit correctly so that its
  35. initialization file is executed and its dialing macros can be found.
  36.  
  37. Finally, when writing a script, always use IF FAILURE or IF SUCCESS after
  38. each command to handle errors -- as explained in the manual "Using MS-DOS
  39. Kermit" (and its German-language counterpart "MS-DOS-Kermit, Das
  40. Universelle Kommunikationsprogramm").  See our Web page for further
  41. information about current Kermit software versions and manuals:
  42.  
  43.   http://www.columbia.edu/kermit/
  44.  
  45. - Frank